$(document).ready(function() {
	MenuSlide("#col2",.8,250)					 
});

function MenuSlide(navigation_id,multiplier,time) {
	var list_elements = navigation_id + " li";
	var link_elements = list_elements + " a";
	var timer = 0;
	$(list_elements).each(function(i) {
		//timer = (timer*multiplier + time);
		//$(this).css("background", "transparent url(uploads/images/inner/leftArrow.gif) no-repeat scroll 0 4px");						   						   
		//$(this).animate({fontSize: "18px"}, timer);
		//$(this).animate({fontSize: "16px"}, timer);
		//$(this).animate({fontSize: "18px"}, timer);
	});
	
	$(list_elements).each(function(i) {
		if (!$(this).hasClass("active")) {
		$(this).mouseenter(
			function() {
				$(this).animate({fontSize: "180%"}, 150);
				$(this).css("background","transparent url(assets/images/internal-sub-menu-arrow.gif) no-repeat scroll 0 13px"); 
//				$(this).animate({fontSize: "14px"}, 150);
//				$(this).animate({fontSize: "18px"}, 150);
		
		});
		
		$(this).mouseleave(
			function() {
				$(this).animate({fontSize: "140%"}, 150);
				$(this).css("background",""); 
//				$(this).animate({fontSize: "14px"}, 150);
//				$(this).animate({fontSize: "18px"}, 150);
		
		});
		}
		
	});
	
}
