$(document).ready(function(){

			$("ul.sf-menu").superfish({autoArrows:false,dropShadow:false});


     	$('#section-right-content-padding').hide();
     	$('.xt-multimediacontents-wrapper').hide();
     	$('#bookmark').show();
     	$('#bookmark').css({width:'900',height:'345'});
     	$('.article-text').hide();
		$('#section-line-left-text a').each(function(i){
   			$(this).click(function(){
        		var id = '.article-text:eq('+i+')';
        		$('#section-line-left-text a.selected').removeClass('selected');
        		$('.article-text').hide();
       			$(id).fadeIn();
       			$(this).addClass('selected');
        		return false;
  			});
 		});
});

$(window).load(function(){
     	  
     	 	$('#bookmark').hide();
     		$('.xt-multimediacontents-wrapper').fadeIn();
     		$('#section-right-content-padding').fadeIn();
     	 	$('#home-phade .xt-multimediacontents-wrapper').cycle({fx: 'fade',timeout:1500,speed:3000});
 });
