// in field labels
$(document).ready(function(){
  $("label").inFieldLabels();
});

// front page cycle
$(document).ready(function(){
  // we say "fit" , disable container resizing and pass in width/height to take advantage of some logic and "disable" resizing
  $("#homeslides").cycle({timeout: 4500, width: "100%", height: "362px", fit: 1, containerResize: 0});
});

$(document).ready(function(){
Technosophos.rssWidget("http://www.hovdelaw.com/blog/feed/", "#blog_widget");
});

// Menu Script
$(document).ready(function(){
	 
	$(".callUs").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});
	
	//$(".drop").hide();
	$("div.drop").parent().addClass("dropdown");
		$("#topPanel ul li.dropdown").click(function(){
			$(this).find("div.drop").show();
			$(this).addClass("activeMenu");
			$(document).pngFix();
			$(this).hover(function() {
				}, function(){
					$(this).find("div.drop").hide(); //When the mouse hovers out of the subnav, move it back up
					$(this).removeClass("activeMenu");
				}); 
			
		});
		
}); 