  $(document).ready(function(){
    
    $(".clickable").click(function () { 
		document.location.href = $(this).attr('title');
    });
	
	$(".newsBigClickable").click(function () { 
		document.location.href = $(this).attr('title');
    });
	
	$(".homeClickable").click(function () { 
		document.location.href = $(this).attr('title');
    });
	
	$(".clickable").hover(function () {
      $(this).addClass("hover");
    }, function () {
      $(this).removeClass("hover");
    });
	
    $(".homeClickable").hover(function () {
      $(this).addClass("hover");
    }, function () {
      $(this).removeClass("hover");
    });
	
	
    $(".newsBigClickable").hover(function () {
      $(this).addClass("newsHover");
    }, function () {
      $(this).removeClass("newsHover");
    });
	 
	 Shadowbox.init();

  });

