jQuery(document).ready(function($){

//gallery scripts & inits î

$('#siteGallery .preview ul li:first').addClass('active');
$('#siteGallery .preview .pic').html('<img src="'+( $('#siteGallery .preview ul li:first').find('img').attr('rel') )+'" alt="" />');
$('#siteGallery .preview .pic img').load( function() {
	$(this).addimagezoom({
		magnifiersize: [400,300],
		magnifierpos: 'left'
	});
});	

$('#siteGallery .preview ul li').each( function() {
	$(this).find('a').click( function() {
		$('#siteGallery .preview ul li').removeClass('active');
		$(this).parent().addClass('active');
		$('#siteGallery .preview .pic').html('<img src="'+( $(this).find('img').attr('rel') )+'" alt="" />');
		$('#siteGallery .preview .pic img').load( function() {
			$(this).addimagezoom({
				magnifiersize: [400,300],
				magnifierpos: 'left'
			});
		});
		return false;
	});
});


});
