// JavaScript Document

// Background 

var total_bg = 5;
$(function() {
	var random_bg = Math.floor(Math.random()*5);
	$("body").css("background-image",  "url(/Content/Images/bg/"+random_bg + ".jpg)");

})
//function OpenProductBigImage(pid) {
//    if (pid > 0) {
//        $.ajax({
//            type: "POST",
//            url: "/Content/WebService/KelebekWebService.asmx/GetProductInformationBigImage",
//            data: "{PID:" + pid + "}",
//            contentType: "application/json; charset=utf-8",
//            dataType: "json",
//            success: function (msg) {
//                $("body").append("<a style='display:none;' title='' href='" + msg.d + "' id='productimagelink'></a>");
//                $('#productimagelink').lightBox();
//                $('#productimagelink').click();
//            },
//            error: function (msg) {
//            }
//        });
//    
//       
//    }
//}
function OpenProductBigImage(path) {

    if (path != null && path.length > 0) {
        $("#productimagelink").remove();
        $("body").append("<a style='display:none;' title='' href='/Page/Image/?path=" + path + "&w=960&h=550' id='productimagelink'></a>");
                $('#productimagelink').lightBox();
                $('#productimagelink').click();
    }
}
