	$(document).ready(function() {
		$('#coin-slider').coinslider({ 
		width: 505, // width of slider panel
		height: 186, // height of slider panel
		spw: 1, // squares per width
		sph: 1, // squares per height
		delay: 6000, // delay between images in ms
		sDelay: 0, // delay beetwen squares in ms
		opacity: 0.7, // opacity of title and navigation
		titleSpeed: 300, // speed of title appereance in ms
		effect: 'straight', // random, swirl, rain, straight
		navigation: true, // prev next and buttons
		links : true, // show images as links 
		hoverPause: true // pause on hover
		});
	});
	
	$(document).ready(function() {
		$('#coin-slider-new').coinslider({ 
		width: 456, // width of slider panel
		height: 304, // height of slider panel
		spw: 1, // squares per width
		sph: 1, // squares per height
		delay: 6000, // delay between images in ms
		sDelay: 0, // delay beetwen squares in ms
		opacity: 0.7, // opacity of title and navigation
		titleSpeed: 300, // speed of title appereance in ms
		effect: 'straight', // random, swirl, rain, straight
		navigation: false, // prev next and buttons
		links : false, // show images as links 
		hoverPause: false // pause on hover
		});
	});	
	
	$(document).ready(function() {
		/* This is basic - uses default settings */	
		$("a#single_image").fancybox();	
		
		/* Using custom settings */	
		$("a#inline").fancybox({
			'hideOnContentClick': true
		});	
		
		/* Iframe settings */
		$("a.iframe").fancybox({
			'type'			:	'iframe',
			'width'			:	800,
			'height'		:	465,
			'padding'   	:	20,
			'transitionIn'	:	'fade',
			'transitionOut'	:	'fade',
			'scrolling'		:	'no'
			
		});
		/* Iframe settings */
		$("a.iframe1").fancybox({
			'type'			:	'iframe',
			'width'			:	800,
			'height'		:	420,
			'padding'   	:	20,
			'transitionIn'	:	'fade',
			'transitionOut'	:	'fade',
			'scrolling'		:	'no'
			
		});
		/* Iframe settings */
		$("a.iframe2").fancybox({
			'type'			:	'iframe',
			'width'			:	800,
			'height'		:	460,
			'padding'   	:	20,
			'transitionIn'	:	'fade',
			'transitionOut'	:	'fade',
			'scrolling'		:	'no'
			
		});			
		/* Apply fancybox to multiple items */
		$("a.group").fancybox({
			'transitionOut'	:	'elastic',
			'speedIn'		:	600, 
			'speedOut'		:	200, 
			'overlayShow'	:	false
		});
	});	
