jQuery(document).ready(function(){ // document.ready START - DO NOT REMOVE.

// target _blank for "a" links.
jQuery("#trget_blank").click(function(){
	window.open(this.href);
	return false;
});

jQuery(".partners").click(function(){
	jQuery(".partners_pop").slideToggle({speed:"slow",easing:"easeOutBounce"});
});

jQuery(".login").click(function(){
	jQuery(".login_pop").slideToggle({speed:"slow",easing:"easeOutBounce"});
});

jQuery("#myController").jFlow({
	slides: "#mySlides",
	selectedWrapper: "dotact",
	width: "99%",
	height: "200px",
	auto: true,
	autotime: 7000,
	duration: 400
});

jQuery("#newsletter_join form").submit(function(){
	var nl_conf = $('#nl_conf').is(':checked');
	if (!nl_conf)
	{
		alert('You must to confirm receive mail...');
		return false;
	}
});	

jQuery(".item_thumbnails a").click(function(){
	var rela = $(this).attr('rel');
	jQuery("#item_image").attr("src", rela);
	return false;
});


}); // document.ready END - DO NOT REMOVE.


			function replc(img) { 
				var name_input = document.getElementById('item_image_pic')
				name_input.src = img;
			}





















