jQuery(function () {

	jQuery('.removeMe').remove();

	jQuery('li ul').attr('class', 'dropdown');
	
	jQuery('.dropdown').parent('li').addClass('drop');

	jQuery('.dropdown').each(function () {
		jQuery(this).parent().eq(0).hoverIntent({
			timeout: 100,
			over: function () {
				var current = jQuery('.dropdown:eq(0)', this);
				current.slideDown(150);
			},
			out: function () {
				var current = jQuery('.dropdown:eq(0)', this);
				current.fadeOut(500);
			}
		});
	});
						
	jQuery('#s3slider').s3Slider({
		timeOut: 4000
	});
	
	jQuery('input, textarea').placeholder();
});

