
$(function() {
	
	/*
	 * 
	 */
	$(document).pngFix();
	
	/*
	 * 
	 */
	$('#header .navigation ul li a').hover(function() {
		$(this).parent().find('ul').show();
		
		$(this).parent().hover(function() {
		}, function() {
			$(this).parent().find('ul').hide();
		});
	});
	
	/*
	 * FancyBox
	 */
	$('a[rel=modal]').fancybox({
		autoScale     : false,		
		titleShow     : false,
		transitionIn  : 'elastic',
		transitionOut : 'elastic',
		type          : 'iframe'
		
    });

    $('a[rel=form]').fancybox({
    
        height: 450,
        width: 550,
        showNavArrows: false,
        autoScale: true,   
        titleShow: false,
        transitionIn: 'elastic',
        transitionOut: 'elastic',
        type: 'iframe'
        
        
        
     
  
        
    });
	
	/*
	 * Product Details
	 */
    $('#tabs > ul').tabs();
	
	/*
	 * 
	 */
    $('#footer .navigation ul li:first-child').addClass('first-item');
	
	/*
	 * 
	 */
	$('#content .latest-news ul').cycle({
		fx      : 'turnDown',
		timeout : 3500
	});
	
	/*
	 * 
	 */
    $('#promotions > ul').tabs({
		fx : {
			opacity : 'toggle'
		}
	}).tabs('rotate', 7000);
});
