﻿//fix z-index in IE 7 evt in Common Header
$(function() {
    var zIndexNumber = 9000;
    $('.main > div, ul').each(function() {
        $(this).css('zIndex', zIndexNumber);
        zIndexNumber -= 10;
    });
});
//init prettyphoto
$(document).ready(function () {
    $("a[rel^='prettyPhoto']").prettyPhoto({ deeplinking: false,slideshow:0, autoplay_slideshow:false,social_tools: false, gallery_markup: '' });
});
