	$(document).ready(function(){
		$('#coin-slider').coinslider({
                width: 894, // width of slider panel
                
                height: 487, // height of slider panel
                
                spw: 7, // squares per width
                
                sph: 5, // squares per height
                
                delay: 3000, // delay between images in ms
                
                sDelay: 25, // delay beetwen squares in ms
                
                opacity: 0.9, // opacity of title and navigation
                
                titleSpeed: 500, // speed of title appereance in ms
                
                effect: 'rain', // random, swirl, rain, straight
                
                navigation: true, // prev next and buttons
                
                links : true, // show images as links
                
                hoverPause: true // pause on hover
            });
		$('#grid_slider').css('margin-left',$('#coin-slider').offset().left);
		$(window).resize(function(){
			$('#grid_slider').css('margin-left',$('#coin-slider').offset().left);
		});
	});
