this.latesthighlights = function(){
	var length = $("#ghighlights li").length;
	for(var i=0; i<3; i++)
	{
		
		
		if (i<2)
                 {
		
		  $("#ghighlights li:eq(" + i + ")").css({"display": "block", "border-bottom": "1px solid #e5e5e5"});
                 }
                if (i==2)
                 {
		
		  $("#ghighlights li:eq(" + i + ")").css({"display": "block", "border-bottom": "5px solid #c0c0c0"});
                 }		

	}
};

$(document).ready(function(){	
	latesthighlights();
});
