// JavaScript Document

$(function() {
    $('#slideshow-home').cycle({
        speed:       850,
        timeout:     7000,
        pager:      '#HomeNav',
        pagerEvent: 'mouseover',
		pauseOnPagerHover: true
    });
	jQuery('.slide').mouseover(function() { 
    $('.slideshow').cycle('pause'); 
	});

	jQuery('.slide').mouseout(function() { 
    $('.slideshow').cycle('resume'); 
	});

});
