$(document).ready(function(){
						 
							try{								
								
								
								$('#banner').corner('5px');
								$('.menu').corner('5px');
								$('#main-body').corner('5px');
								
								
								
								$('input.wpcf7-text').focus(function(){
																	  this.value="";
																	  });
																	  
								$("ul.sub-menu").parent().mouseover(
								  function(){
									$(this).children('ul.sub-menu').show();
									//$(this).children('a').click(function() { return false; });
	
									//$(this).children('a').href();
								}
								).mouseout(
								   function(){
									$(this).children('ul.sub-menu').hide();
								});
								
							}catch(e){
								
							}
							
						   });
