// JavaScript Document

 
$(document).ready(function(){ 
						   
	//png Fixed					   
	$(document).pngFix(); 
	
	//dropdown menu
	$('.menu li').hover(
		function () {
		$('ul', this).slideDown(500);
		}, 
		function () {
		$('ul', this).slideUp(100);			
		}
	);

}); 



//function for news scroll
$(function() {
	$(".ticker_content_box").jCarouselLite({
		vertical: true,
		hoverPause:true,
		visible: 1,
		auto:3000,
		speed:1000
	});
});