// JavaScript Document
$(document).ready(function() {
$(".hover").hover(function () {
      $(this).css({'background-color' : '#0A1859', 'cursor':'pointer'});
    }, function () {
      var cssObj = {
        'background-color' : ''
        
      }
      $(this).css(cssObj);
    });
});

function goto(url)
{
	window.location = url;	
}
