// This function used for fading search box
// This function used for ie6 to fixing drop-down menu (jquery)
jQuery(document).ready( function() {
	jQuery("ul.dropdown li").hover( function() {
		jQuery(this).addClass("hover");
		jQuery('> .dir', this).addClass("open");
		jQuery('ul:first', this).css('visibility', 'visible');
	}, function() {
		jQuery(this).removeClass("hover");
		jQuery('.open', this).removeClass("open");
		jQuery('ul:first', this).css('visibility', 'hidden');
	});
});

jQuery(document).ready( function() {
	jQuery(".sideNav a").not(".sideNav .selected a").hover( function() {
		jQuery(this).stop().animate( {
			paddingLeft : "12px"
		}, 400);
	}, function() {
		jQuery(this).stop().animate( {
			paddingLeft : "0px"
		}, 200);
	});
});

jQuery(document).ready( function() {
	// This function used for round corners
		/* varying radii, "all" browsers */
		/* FOR ALL BROWSER
		DD_roundies.addRule('.roundedCorners5', '5px', true);
		DD_roundies.addRule('.roundedCornersTop5', '5px 5px 0 0', true);*/

		DD_roundies.addRule('.roundedCorners5', '5px');
		DD_roundies.addRule('.roundedCornersTop5', '5px 5px 0 0');
		/* For ie6 Png Fix */
		//DD_roundies.addRule('#outer #content img');
	});

jQuery().ready(function() {
jQuery('.clear').formclear(); //sets the forms to be cleared . This is all you all you need!!!
}); 
