﻿        jQuery(function(){
            jQuery.fn.fancybox.defaults.path = '/assets/images/Fancy/';
            jQuery("a.imageMainImage").fancybox({
    	        'fancy' : true,
    	        'speed'	: 750
                });
        });

        function BasketDisplay(url){
	        var txt = '<b>Added To Basket</b><br /><br /><span style="font-weight:normal">Your shopping basket has been updated with the chosen item/s.</span>';
        	
	        $.prompt(txt,{ 
		        buttons:{Checkout:true, Continue:false},
		        callback: function(v,m){
        			
			        if(v){
			            window.location.href = "Checkout.aspx";
			        }
			        else{
			            window.location.href = url;
			        }
        			
		        }
	        });
        }
