$(document).ready(function(){

	/* 
		PAGINATION 
		Used in store/catalogue.tpl, store/category.tpl and press/index.tp
	*/
	$("#thumbView").easySlider();
	
	/*
		FANCY BOX
		Used in press/view.tpl and store/view.tpl
	*/
	$("a.fancybox_item").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true });
	
	/*
		FANCY BOX - iFrame
		Used to display the contact form in a iFrame
	*/
	$("a.iframe").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'frameWidth': 550, 'frameHeight': 270, 'overlayShow': true });
	
	
	/**
   	 * Looks
	 */
	if ($('span.look_num').length) {
		$('span.look_num').each(function() {
			$(this).css({ 'visibility' : 'hidden' });
		});
	}
	
	if ($('#thumb_list > ul > li').length) {
		$('#thumb_list > ul > li').mouseover(function() {
			$(this).find('span.look_num').css({ 'visibility' : 'visible' });
		});
		$('#thumb_list > ul > li').mouseout(function() {
			$(this).find('span.look_num').css({ 'visibility' : 'hidden' });
		});
	}
});

function display_img(thumb_src, full_src, target, index) {
	$('.altimg').addClass("altimg").removeClass("active");
	$('#alt_img_' + index).addClass("altimg active");
	$('#' + target + ' > a').attr({
		"href" : full_src
	});
	$('#' + target + ' > a > img').attr({
		"src" : thumb_src
	});
}


function ucc_submit() {
	if ($('#uccTo').val() != '') {
		$('#ucc_form').submit();
	}
}


function ucc_toggle() {
	$('#uccTo').val('');
	$('#uccToDiv').toggle('fast');
}

