/**
 * @author marccastles
 */
$(function() {
	$(".links li").each(function(){
	    $(this).bind('mouseover',function() {
	        $(this).css({"background-color":"#F2EAD7"});
	    })
		$(this).bind('mouseout',function() {
	        $(this).css({"background-color":"transparent"});
	    })
		
		$(this).bind('click',function() {
	        document.location = $(this).find("a:first").attr("href");
	    })
		
		
	});
})