		// Set up Sliders
		// **************
		$(function(){

			$('#slider1').anythingSlider({
				width               : 788,  
				height              : 388,  
				startStopped    : false, 
				buildArrows         : true,
				toggleArrows        : true,
				toggleControls      : false,
				enableKeyboard		: true,
				autoPlayLocked  : true,  

				onSlideComplete : function(slider){
					
					
				}
			});

			

		});
		
		
		$(function(){

			$('#slider2').anythingSlider({
				width               : 700,  
				height              : 480,  
				startStopped    : false, 
				buildArrows         : true,
				autoPlayLocked  : true,  

				onSlideComplete : function(slider){
					
					
				}
			});

			

		});		



$(document).ready(function(){

	$('.anythingControls').wrap('<div class="content_controls" />');

	$('.anythingControls').wrap('<div class="center_controls" />');
	
	
	$('.anythingControls').before($('<div/>', {
         'class': 'beforeControls',
         html: ' '
       }));
	
	$('.anythingControls').after($('<div/>', {
         'class': 'afterControls',
         html: ' '
       }));	   	



$(".arrow , .content_controls").animate({"opacity": "0"}, "slow");

$("#show").mouseenter(function() {
	$(".arrow , .content_controls").stop().animate({"opacity": "1"}, "slow");
}),

$("#show").mouseleave(function() {
$(".arrow , .content_controls").animate({"opacity": "0"}, "slow");
});
 


$(".box").animate({"opacity": "0"}, "slow");

$("#show").mouseenter(function() {
$(".box").stop().animate({"opacity": "0.7"}, "slow");
}),

$("#show").mouseleave(function() {
$(".box").animate({"opacity": "0"}, "slow");
});
 
});


