//menu
jQuery.jMenu = function(id){
	$(id + " li[class='mainNav'], li[class='mainNav_active']").hover(function(){
		$(this)
    .css({'z-index':'1000'})
    .find('div:first').css({'z-index':'998', 'display':'block'});
	},
	function(){
		$(this)
    .css({'z-index':'10'})
    .find('div:first').css({display:'none'});
	});
}



$(window).load(function() {

  //init menu  
  $.jMenu("#mainNav"); 
  
  //modelSelect
  $(".modelSelect li[class!=active] img").stop().animate({opacity: 0.3}, 750); 
  $(".modelSelect li[class!=active] img").hover(
    function () {
      $(this).stop().animate({opacity: 1}, 350);
    },
    function () {
      $(this).stop().animate({opacity: 0.3}, 350);
    }
  ); 
  
  //nivo slider
	$('#slider').nivoSlider({ 
		effect:'fade',
		animSpeed:400,
		pauseTime:5000
	});
	
	//fancybox
	$('#gallery_thumbs a').fancybox({
		'transitionIn'      : 'none',
		'transitionOut'     : 'none',
		'titleShow'	        : true,
		'titlePosition'	    : 'inside'
	});
	
	//fancybox iframe
	$('#btn_cataloge, #btn_callback, #btn_content_kontakt, #btn_info, .button, #btn_callback_service').fancybox({ 
		'transitionIn'      : 'none',
		'transitionOut'     : 'none',
		'titleShow'	        : true,
		'titlePosition'     : 'inside',
    'type'              : 'iframe',
    'autoScale'         : false
	});
	
});
