$(document).ready(function(){
    $("a[rel^='prettyPhoto']").prettyPhoto();
    
    ddsmoothmenu.init({
        mainmenuid: "dropdown_menu", //menu DIV id
        orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
        classname: 'dropdown', //class added to menu's outer DIV
        //customtheme: ["#1c5a80", "#18374a"],
        contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
    })
    
    $(".shadow").css({
        'text-shadow': '1px 1px #fff'
    });
    $(".shadow_2").css({
        'text-shadow': '1px 0px #fff'
    });
    
    $("body").css({
        'overflow-x': 'hidden'
    });
    
    if (window.location == window.parent.location) {
        $('.sm-overlay').each(function(){
            $(this).wrap('<div class="overlay-image" style="' + $(this).attr("style") + '">');
            $(this).after('<img alt="" src="/css/images/pic-overlay.png" />');
			$(this).attr("style", "");
        });
    }
    
    $('body').supersleight();
});


