﻿//common js file
 $(document).ready(function(){ 
 
	//superfish calling
    $("ul.sf-menu").superfish({
		autoArrows:    false,
		dropShadows:   false
	}); 
			
	//add first
	$("#logorotator li:first").addClass('first');
	$("#navigationMenu li:last").addClass('last');
	
		
	// scroll new homepate
	$("#scrollnews .scrollnewswrap").wrap('<div class="wrapscrollnews" style="float:left; padding-top:14px;"></div>').parent().jCarouselLite({
        btnNext: "#scrollnews .next",
        btnPrev: "#scrollnews .prev",
		visible: 1,
		auto: 4000,
		speed: 500
    });
	
	//scroll hot studen
	$("#logorotator .containwrap").jCarouselLite({
        btnNext: "#logorotator .next",
        btnPrev: "#logorotator .back",
		visible: 5,
    });
	
	// alert($("#centercontent").height());
	// alert($("#rightcontent").height());
	
	//add link url download file.
	if( $(".detailnews").length>0 ) {
		$(".detailnews .downloadfile").each(function() {
			var $cache = $(this);
			$cache.find('p').after('<a class="exlink" href="http://www.tritueviet.vinalands.com.vn'+$cache.find(".bt").attr('href')+'">'+$cache.find(".bt").attr('href')+'</a>');
		});
	};
	
	
	//equalheight centercontent-rightcontent
	$(window).load(function() {
		if( $("#centercontent").height() < $("#rightcontent").height() ) 
			$("#centercontent").height($("#rightcontent").height());
			
		if( $("#rightcontent").height() < $("#centercontent").height() )
			$("#rightcontent").height($("#centercontent").height());
	});

}); 
