$( document ).ready( function(){
	$('.field')
		.focus(function(){
			if ( $(this).attr('value') == $(this).attr('title') ) {
				$(this).attr({ 'value': '' })
			}
		})
		.blur(function(){
			if ( $(this).attr('value') == '' ) {
				$(this).attr({ 'value': $(this).attr('title') })
			}
		});
	
	$('.carousel ul').jcarousel({
		'visible':1,
		'scroll':1,
		'wrap':'both',
		'auto': 4
	});
	
	
	$('#navigation li').hover(
		function(){
			var sub = $(this).find('.dd');
			if( sub.length == 0 ) return;
			
			sub.show();
			$(this).find('a:eq(0)').addClass('hover');
		}, 
		function(){
			var sub = $(this).find('.dd');
			if( sub.length == 0 ) return;
			
			sub.hide();
			$(this).find('a:eq(0)').removeClass('hover');
		}
	);
});