﻿/*
* home.js -used For home page
* Version 1.0
*/

/*After CountryChange happenes*/
$(CURRENCY).bind('currencyChange', function(args, data) {
    UpdateCreateTabprice(data.currency);
});

function UpdateCreateTabprice(currency) {
    if (currency == "INR") {
        jQuery('#photobook').html("<strong>Photo books </strong>from Rs. 495.00");
        jQuery('#calendar').html("<strong>Calendars </strong>from Rs. 125.00");
        jQuery('#prints').html("<strong>Prints </strong>from Rs. 4.00");
    }
    else {
        jQuery('#photobook').html("<strong>Photo books </strong>from $10.99");
        jQuery('#calendar').html("Calendars </strong>from $2.50");
        jQuery('#prints').html("Prints </strong>from $0.12");
    }
}
$(function() {
    sIFR.replaceElement(named({ sSelector: ".mugs h2 em", sFlashSrc: globalChalet, sColor: "#69a008", sWmode: "transparent" }));
    sIFR.replaceElement(named({ sSelector: ".mugs h2 span", sFlashSrc: globalChalet, sColor: "#69a008", sWmode: "transparent" }));
});
$("#loadingajax").ajaxStart(function() {
    $(this).css({
        opacity: 0.7,
        width: $("#tabcontentcontainer").width() + 20,
        height: $("#tabcontentcontainer").height()
    });
    $(this).show();

});
$("#loadingajax").ajaxStop(function() {
    $(this).hide();
});
$(function() {
    $('#takeatour').click(function(event) {
        event.preventDefault();
        new Boxy("<div style='padding-right:10px;'><iframe src ='/Home/TakeATour' width='100%' height='100%'><p>Your browser does not support iframes.</p></iframe></div>", {
            height: '648px',
            width: '925px',
            title: this.title,
            modal: true
        });
    });
});
