
$j = jQuery.noConflict();

$j(document).ready(function() {
						   

   
     jQuery('table tr').click(function() {
     window.open(jQuery("a", this).attr('href'), 'newwin').focus();
         
               return false;
           });







           $j('.vouchercodes p a').click(function() {


           $j(this).parent("p").parent("div").children(".voucher").slideToggle(1000);

               return false;
           });



           $j('.voucher a.info').click(function() {


               $j(this).parent("p").parent("div").children(".voucher-info").slideToggle(1000);

               return false;
           });
    

});


 