jQuery(document).ready(function() {
	//drop down menu
	jQuery('.removeMe').remove();
	jQuery('ul li ul').each(function(){
		if(jQuery(this).parent("div").attr("id") != "nav"){
			jQuery(this).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);
			}
		});
	});
				
	//placeholders
	jQuery('input, textarea').placeholder();
	
	
});
