function switchProductImage(img,i){
	$('#product_image').attr('src','images/product/' + img);
	$('#image_description').html($('#image_description'+i).html());
}
function checkNewsLetterForm(f){
	if($('#name').val().length==0){
		 alert("Please enter the name");
		 return false;
	}
	if($('#nikihr-nikihr').val().length==0){
		  alert("Please enter the email address");
		  return false;
	}
	return true;
}

function show_hide_postcode(){
	if(document.getElementById('send_dealershop').checked){
       $('#post_title').show();
       $('#post_input').show();
	}else{
		$('#post_title').hide();
	       $('#post_input').hide();
	}
}
function showGallery(){
    var as = $('#imageTable a').first().click();
}

