$(document).ready(function(){
						 
							try{								
								$(".navigation li:first-child").addClass('noline');

								$(document).ready(function(){
								$("ul.sub-menu").parent().mouseover(	  function(){
								$(this).children('ul.sub-menu').show();
								}	).mouseout(	   function(){
								$(this).children('ul.sub-menu').hide();
								});
								});
								
								
								$("ul.sub-menu").parent().addClass('dropDown');
																
								
							
								
								$('input.wpcf7-text').focus(function(){
																	  this.value="";
																	  });
								
							}catch(e){
								alert(e);
							}
							
						   });
