$(function(){
	// SLIDESHOW HOME
	jQuery('#homeslides').cycle({
		fx:      'scrollRight',
		speed:  'slow',
		timeout:  5000,
		cleartype:  1
	});
	// SLIDESHOW CAPTIONS HOME
	jQuery('#captions').cycle({ 
		fx:      'custom', 
		sync: 0,
		cssFirst: {
			top:  400
		},
		cssBefore: {  
			top:  400, 
			left: 730, 
			opacity: 0,
			display: 'block' 
		}, 
		animIn:  { 
			left: 0 ,
			opacity:1
		}, 
		animOut: {  
			top: 450,
			opacity:0
		}, 
		timeout:  5000
	});
	// SLIDESHOW SINGLE 
	jQuery('#singleslides').cycle({ 
		fx:     'fade', 
		speed:  'slow',
		timeout: 5000, 
		pager:  '#singlenav', 
		cleartype:  1,
		pagerAnchorBuilder: function(idx, slide) { 
			return '#singlenav li:eq(' + idx + ') a'; 
		} 
	});
	// SLIDESHOW PAUSE BUTTON
	$('#galpause').click(function() { 
    	$('#singleslides').cycle('pause'); 
	});
	// SLIDESHOW PLAY BUTTON
	$('#galplay').click(function() { 
    	$('#singleslides').cycle('resume', true); 
	});
	// PROJECT ANIMATION
	$('ul#project_thumbs li').hover(function(){
		$(this).find('span').animate({"padding-bottom":"25px"},{queue:false,duration:500});
	}, function(){
		$(this).find('span').animate({"padding-bottom":"5px"},{queue:false,duration:500});
	});
	// MENU
	function slideDiv1(){
	$(".sub").animate({"height": "toggle"}, { duration: 1000 });
	}
});
