$(document).ready(function(){
	
	/*
		GALLERY
		Used in collections/index.tpl and collections/view.tpl 
	*/
	
	$('#collection ul').jqGalScroll({height:455, width:660, ease:'easeInOutCubic', speed:0, perPage: 10});
	$('#galleryNav').easySlider({controlsBefore: '', controlsAfter: '', nextId: 'colNext', prevId: 'colPrev'});

	/* 
		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#single_image").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true });
	$("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': 600, 'frameHeight': 400, 'overlayShow': true });

});


function display_img(thumb_src, full_src, target, index) {
	$('.altimg').attr({
		"class" : "altimg"
	});
	$('#alt_img_' + index).attr({
		"class" : "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');
}

