/**
 * @author alex
 */
$(document).ready(function() {
    $('#gallery').jcarousel({
        scroll:6
    });
	
	$('img#home_gallery_main_image').click(function(){ window.location = $('#gallery li:first').children('a').attr('href'); });
	
	$('#gallery').children('li:first').addClass('selected');
	//$('#gallery li').children('a').attr({'href':'javascript: void(0);'});
	$('#gallery').children('li').click(function(){
		$('#gallery').children('li').removeClass('selected');
		$(this).addClass('selected');
		var a_parent = $(this).children('a');
		var thumb_src = $(a_parent).children('img').attr("src");
		var src_split=thumb_src.split("/");
		
		var img_src = src_split[(src_split.length-1)];
		$('img#home_gallery_main_image').attr({
			'src': '/assets-uploaded/images/324x240/' + img_src,
			'alt': $(a_parent).children('img').attr("alt")
		});
	
		$('img#home_gallery_main_image').click(function(){ window.location = $(a_parent).attr('href'); });
	
	});
	
	$('#gallery li').children('a').click(function(){
		$(this).parent('li').click();
		return false;
	});
});