//<![CDATA[    

$(document).ready(function(){

	/* Assign a class to li on mouseover */
	$('#naviMain ul.level1 > li.no > a').hover(
		function(){
			$(this).animate({ marginTop:'-5px' }, { duration:100 });
		},
		function(){
			$(this).animate({ marginTop:'0px' }, { duration:100 });
		}
		
	);
	
	/* Assign a class to li on mouseover */
	$('#naviSiteinfo ul.level1 > li.no > a').hover(
		function(){
			$(this).animate({ marginTop:'0px' }, { duration:100 });
		},
		function(){
			$(this).animate({ marginTop:'-5px' }, { duration:100 });
		}
		
	);
	
	/* init custom scrollbars */
	$('.scroll-pane').jScrollPane({showArrows:true});

    /* news switching via stepcarousel */

    /* syncing height of content boxes */
    $('.csc-frame-frame1').syncHeight();
    
    /* make create bigTargets */
    $('div.dt-mkseries-item p a').bigTarget({
        hoverClass: 'over', // CSS class applied to the click zone onHover
        clickZone : 'div.dt-mkseries-item' // jQuery parent selector
    });

    /* apply cluetip tooltips to icons in DisplayAllSizes View */
    $('.typesIcons a').cluetip({
    	local: true,
    	hideLocal: true,
    	showTitle: false,
    	width: 170,
    	height: 100,
    	positionBy: 'fixed',
    	topOffset: -113,
        leftOffset: -30,
    	cursor: 'pointer',
    	dropShadow: false,
    	dropShadowSteps: 0
    });


    /* tt_news animations for news and shop items */

    $("#col-01 .news-list-container").easySlider({
        loop: true,
        orientation: 'fade',
        autoplayDuration: 7000,
        autogeneratePagination: false,
        restartDuration: 500,
        nextId: 'newsnext',
        prevId: 'newsprev'
    });
    $("#col-02 .news-list-container").easySlider({
        loop: true,
        orientation: 'fade',
        autoplayDuration: 3500,
        autogeneratePagination: false,
        restartDuration: 500,
        nextId: 'shopnext',
        prevId: 'shopprev'
    });
  	
});

//$('#col-02 .sscroll-container ul').innerfade({ speed: 'fast', timeout: 4000, type: 'sequence', containerheight: '540px' }); 

//]]>

