﻿function changeBigImage(fileName,information)
{
    $("#_bigImage").animate({ 'opacity': "0" }, 500, function() {        
        $(this).attr("src", "Images/ProductImages/Products/" + fileName);
    });    
    $("#_bigImage").animate({ 'opacity': "10" }, 500);    
    $("#_bigImageInformation").text(information);
}


function showHide(_htmlActiveControl, _button) {    
    if ($("#" + _htmlActiveControl).css("display") == "block" || $("#" + _htmlActiveControl).css("display") == 'undefined') {
        $("#" + _htmlActiveControl).slideDown(500);
    }
    else {
        $("#" + _htmlActiveControl).slideUp(500);
    }
}