$(document).ready(function(){
    $('#menu li').hover(
        function(){
            $(this).has('ul').addClass('hover');
        },
        function(){
            $(this).removeClass('hover');
        }
    );
    $('.with-shadow, .modal_win').click(function(){
        var link = $(this).attr('href');		
        open_window(link,740, 870);
        return false;
    });
});
function open_window(link,w,h) //opens new window
 {
  var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=no,scrollbars=yes";
  newWin = window.open(link,"_blank",win);
  newWin.focus();
 }
