$(document).ready(function(){
	Shadowbox.init({
		skipSetup: true, // skip the automatic setup
		loadingImage: 'assets/templates/sico/img/loading.gif',
		animSequence: 'sync'
	});
		
	Shadowbox.setup($('#entry a:has(img)'), {
        gallery:            'My Movies',
        autoplayMovies:     true,
		type: 				'img'
    });


	$('#entry a:has(img)').append('<div class="zoom"><img src="assets/templates/sico/img/zoom.png" alt="click to zoom"/></div>');
		
		$('#entry a:has(img)').hover(
						
			function(e){
				var Y = this.offsetTop - 250;
				var url = document.location.href;
				if(url.indexOf('quartz') > -1) {
					var Y = this.offsetTop - 185 ;
				}
	
				var cssObj = {
				        "background": "url("+$(this).attr('href').replace('full','preview')+") no-repeat 380px " + Y + "px"
				}			
				$('#entry').css(cssObj);
	
			},
			function(){
				void(0);
			}
		);
	
})