$(document).ready(function(){
    $("div.clickable").click(
        function() {
            window.location = $(this).attr("url");
        });
});
$(document).ready(function(){
    $("img.clickable").click(
        function() {
            window.location = $(this).attr("clk");
        });
});
$(document).ready(function(){
    $("p.clickable").click(
        function() {
            window.location = $(this).attr("clk");
        });
});
$(document).ready(function(){  
    $('.cancel').click(function(){  
        $(this).parent().fadeOut();  
    return false;  
    });
    $('.flash').animate({opacity: 1.0}, 3000).fadeOut();    
    $('#flashMessage').animate({opacity: 1.0}, 3000).fadeOut();   
});
function swapImages(){
    var $active = $('#content .active');
    var $next = ($('#content .active').next().length > 0) ? $('#content .active').next() : $('#content :first');
    $active.fadeOut(function(){
        $active.removeClass('active');
        $next.fadeIn().addClass('active');
    });
}
function SWFLink(data) {
    $.ajax({
        type: 'POST',
        url: "\/dev.signaturekitchensandbaths.com\/banners\/setBannerClick\/"+data,
        data: data,
        dataType: 'JSON'
    });
}
