﻿/*
* home.js -used For home page
* Version 1.0
*/

/*After CountryChange happenes*/
$(CURRENCY).bind('currencyChange', function(args, data) {
    location.reload();
});
$("#loadingajax").ajaxStart(function() {
    $(this).css({
        opacity: 0.7,
        width: $("#tabcontentcontainer").width() + 20,
        height: $("#tabcontentcontainer").height()
    });
    $(this).show();

});
$("#loadingajax").ajaxStop(function() {
    $(this).hide();
});
$(function() {
    $("ul.tabset").show();
});
﻿
