$(document).ready(function(){
		$('input[name=searchterm]').blur(function(){
					if ( this.value == '' )
					   {
							this.value = '.....';   
					   } 						  
												  });
		$('input[name=searchterm]').focus(function(){
					if ( this.value == '.....' )
					   {
							this.value = '';   
					   } 
												  });
	   $('input[name=post]').change(function(){
					if ( this.value == 2 )
					{
						$('#pakiautomaat').show();	
					} else {
						$('#pakiautomaat').hide();		
					}
											 });
	   
	   //images 
	   $('.small_image_holder img').click(function(){
			$('.product-image').attr('src',$(this).attr('src'));
			
												   });
						   });
