$( document ).ready(function(){
	$('#navigation li').hover(
		function(){ 
			var sub = $(this).find('.sub-nav');
			if( sub.length == 0 ) return;
			sub.show(); 
			$(this).find('a:eq(0)').addClass('hover');
		},
		function(){ $(this).find('.sub-nav').hide(); $(this).find('a:eq(0)').removeClass('hover'); }
	);
	
	$('.blink')
		.focus(function(){
			if($(this).attr('value') == $(this).attr('title')){
				$(this).attr({ 'value': '' });
				$(this).addClass('black');
			}
		})
		.blur(function(){
			if($(this).attr('value') == ''){
				$(this).attr({ 'value': $(this).attr('title') });
				$(this).removeClass('black');
			}
		});
	
	if ( $('.carousel-logos ul').length > 0 ) {
		$('.carousel-logos ul').jcarousel({ wrap: 'last' });
	}
	
});