var prevTitle = null;
jQuery(document).ready(function () {
    jQuery('.headImg').cycle({
        timeout: 4500,
        speed:   600,
		fx: 'none',
        startingSlide: 0,
        before: function() {
            //added selected class to navigation li on change
            var title = this.title;
            jQuery("li[title="+title+"]").addClass("selected");
            jQuery("li[title="+prevTitle+"]").removeClass("selected");
            prevTitle = title;
        }
    });
	
	
    jQuery('#goto1').hover(function() {
        jQuery('.headImg').cycle(0);
        return false;
    });
    jQuery('#goto2').hover(function() {
        jQuery('.headImg').cycle(1);
        return false;
    });
    jQuery('#goto3').hover(function() {
        jQuery('.headImg').cycle(2);
        return false;
    });
    jQuery('#goto4').hover(function() {
        jQuery('.headImg').cycle(3);
        return false;
    });
	
});