$(function(){var subscribeText=$("input[name='mail']").val();$("select[name='pfilter']").change(function(){var newPfilter=$(this).val();var url="/"+lang+"/press/index/?vpage="+vpage;if(newPfilter!=""){url+="&pfilter="+newPfilter;}if(vfilter!=""){url+="&vfilter="+vfilter;}window.location=url;});$("select[name='vfilter']").change(function(){var newVfilter=$(this).val();var url="/"+lang+"/press/index/?ppage="+ppage;if(pfilter!=""){url+="&pfilter="+pfilter;}if(newVfilter!=""){url+="&vfilter="+newVfilter;}window.location=url;});$("input[name='mail']").focus(function(){var text=$(this).val();if(text==subscribeText){$(this).val("");}});$("input[name='mail']").blur(function(){var text=$(this).val();if(text==""){$(this).val(subscribeText);}});var form=$("#subscribeform");form.validate({errorClass : "error",errorElement: "span",rules :{mail :{required : true,email : true,maxlength : 250}},messages :{mail :{required : "",email : "",maxlength : ""}}});});
