// AHP JavaScript Document
 $(document).ready(function(){
	if($(".propertyInfo").length > 0){
		$(".propertyInfo img").hover(
		  function () {
			$(this).addClass("imgHover");
		  }, 
		  function () {
			$(this).removeClass("imgHover");
		  }
		);	
	}
});
 
$(document).ready(function(){
	if($(".featureLink").length > 0){
		$(".featureLink img").hover(
		  function () {
			$(this).addClass("blueBorder");
		  }, 
		  function () {
			$(this).removeClass("blueBorder");
		  }
		);	
	}


});

$(document).ready(
	function()
	{
		if($("#newsItems").length > 0){
		$("#newsItems").newsTicker(5000);
		parseSamples();
		}
	}
);
