(function ($) {
  Drupal.behaviors.customOmegaSubthemeJS = {
    attach: function(context, settings) {
      // you can implement your custom javascript/jquery here,
      // and also create other attached behaviors
      
    }
  };
})(jQuery);
;
(function ($) {
	
 /*jQuery(document).ready(function(){
   jQuery("a").click(function(event){
     alert("Thanks for visiting!");
   });
 });*/

jQuery(document).ready(function(){
/*$('.click')
  .css("cursor","pointer")
  .click(function() {
    var link = $(this).find('a:first');
    var linkhref = link.attr('href');
    if (link.attr('target') ) {
      var nwin = window.open(linkhref, link.attr('target'));
      nwin.focus();
    }else{
      window.location = linkhref;
    }
    return false;
});*/
$('.click') 
.css("cursor","pointer")
  .click(function() {
     window.location=$(this).find("a").attr("href");
     return false;
});

});




  Drupal.behaviors.customOmegaSubthemeJS = {
    attach: function(context, settings) {
      // you can implement your custom javascript/jquery here,
      // and also create other attached behaviors
      
    }
  };
})(jQuery);
;

