// JavaScript Document
$(document).ready(function () {	
var title="";	
	
	$('ul.navBar li').hover(
		function () {

			$('ul.dropdown', this).show();
       
		}, 
		function () {
			$('ul.dropdown', this).hide();

		}
	);
	
	
	$('ul.dropdown').hover(
		function () {
		 title = $(this).parent('li').find('div').attr('class');//fins name of style on the div
		title=title +'hov';
		$(this).parent('li').find('div:first').addClass(title);//append hov to apply the hover style
			
		}, 

function () {
			
		
		
		$(this).parent('li').find('div:first').removeClass(title);// revove the last added class to the div 


		}
	);	
		
	$('#fade').list_ticker({
			speed:3500,
			effect:'fade'
		});
});
