﻿
$(document).ready(function(){
	$(".homenews ul li").click(function() {
	  window.location = $(this).find("h4:first a:first").attr("href");
	});

  $(".homenews ul li").hover(
    function() {
      $(this).addClass("panelover");
      
    },
    function() {
      $(this).removeClass("panelover");
      
    }
  );
  
  
});

$(document).ready(function(){
	$("#productsofinterest ul li").click(function() {
	  window.location = $(this).find("h3:first a:first").attr("href");
	});

  $("#productsofinterest ul li").hover(
    function() {
      $(this).addClass("panelover");
      
    },
    function() {
      $(this).removeClass("panelover");
      
    }
  );
  
  
});

$(document).ready(function(){
	$(".newslist ul li").click(function() {
	  window.location = $(this).find("h5:first a:first").attr("href");
	});

  $(".newslist ul li").hover(
    function() {
      $(this).addClass("panelover");
      
    },
    function() {
      $(this).removeClass("panelover");
      
    }
  );
  
  
});


$(document).ready(function(){
	$("#globalnews ul li").click(function() {
	  window.location = $(this).find("h5:first a:first").attr("href");
	});

  $("#globalnews ul li").hover(
    function() {
      $(this).addClass("panelover");
      
    },
    function() {
      $(this).removeClass("panelover");
      
    }
  );
  
  
});

/*

$(function () {
	
	$(".homenews ul li").hover(
	
		function() {
			$(this).fadeTo("normal", 0.9, function() {
				$(this).addClass("panelover");
			});
			
		},
		function() {
			$(this).fadeTo("normal", 0.9, function() {
				$(this).removeClass("panelover");
			});
			
		}
	);
});


$(function () {
	
	$(".homenews ul li").hover(
	
		function() {
 $(this).animate({ backgroundColor: "black" }, 1000);
},function() {
    $(this).animate({ backgroundColor: "#68BFEF" }, 500);
    		}
	);
});
*/
