
$(function(){
		   		$('#abc').click();
				$('#def').click();
				
				$('#forgot_password').click(function(){ 
				var user=$('#UserEmail').val(); 
					$.ajax({ 
						type: "POST", 
						url:SITE_VAR.SITE_URL+"users/forgot_password",
						data: "data[User][email]="+user, 
						success: function(msg){ 
							if(msg=='false'){ 
								$('.mess1').css("color","red").text('Vul je e-mail adres in.'); 
							}else if(msg=='true') { 
								$('.mess1').css("color","red").text('U account gegevens zijn naar uw e-mail adres verstuurd.'); 
							} else{ 
								$('.mess1').css("color","red").text('Dit e-mail adres komt niet in onze database voor.'); 
							} 
						} 
					});  
				}); 
				
			
				//---------------------------------------------------//
	           $('#UserWebshop').change(function(){
					var webshop_slug= $(this).val();
			   window.location=SITE_VAR.SITE_URL+"shop/"+webshop_slug;
			   });
			   
			   
			    $('#shop-filter').change(function(){
					var webshop_slug= $(this).val();
					window.location=CATEGORY_LOC.SITE_URL+"/"+webshop_slug;
			   });
			   
			   
			   $("#default-usage-select").selectbox().bind('change', function(){
				$("<div>Value of #default-usage-select changed to: "+$(this).val()+"<\/div>").appendTo('#demo-default-usage .demoTarget').fadeOut(5000, function(){
					$(this).remove();
				});
			   });
			   
			  
});	


