

/* all initialization */
$(document).ready(function() {
	

	$('.topmenu > li').hover(function(){
				$(this).addClass('tmhover');
				$(this).find('.rel').show();
		}, function(){
				$(this).removeClass('tmhover');
				$(this).find('.rel').hide();
	  });

/*
	 $('.enter-f').hover(function(){
			$(this).addClass('enter-f-act');
		}, function(){
			$(this).removeClass('enter-f-act');
		  }); */

	
	$('#carousel').featureCarousel();	

	
	


});




