              
      $(document).ready(function(){
    	           
    	   $('a').click(function()
    	   {        		   
    		 
    		 
    		  if ($(this).attr('target') == "blank" || $(this).attr('target') == "new")
    		    return true; 	   
    		   
        	   var buyNow=/^(.*)action=buy_now&products_id=([0-9]+)(.*)$/i;
        	 
        	   if (buyNow.test( $(this).attr('href') ))
        	   {  
				        		   		
        		   if($.browser.msie){
        			   
        			   return true;     	
        		   }
        		   else
        		   {        

        			   $.get( 

                			   $(this).attr('href') ,

                			   function(data)
                			   {

                				   $('#cart_ajax') . toggle("fast");  
             	        		  
             	        		  $.get(
             	             			 'shopping_cart_show.php'  , 

             	                     	function(data) {
             	             			  $('#cart_ajax').html(data);
             	             			 $('#cart_ajax') . fadeIn("slow");   
             	             				
             	             			}); 
                    			   
                			   }
                			   
                			   );   
      			   	        		              		               	   
	      	   		  return false;  
        		   }      	     
        	   }
          	   else {  
          		 
        	     window. location = $(this).attr('href');     	  
        	   }       	   
        	   
    	   });
    	}); 
