// round border iExplorer
// DD_roundies.addRule('.roundBorder','10px');


// Standard jQuery header
(function($) {
$(document).ready(function() {
if (navigator.appName.indexOf("Internet Explorer") != -1) {
} else {

}

	
	//ContentHeader
	$("#ContentHeader h1").fadeIn('slow',function() { $("#ContentHeader .paragraph").fadeIn('slow'); });
	$(".subCategory").hover(
		function() {
				var fade = $(this).find('.subCategorySummary:first');
				if (fade.is(':animated')) {
					fade.stop().fadeTo(0, 1);
				} else {
					fade.fadeIn(0);
				}
			},
		function () {
				var fade = fade = $(this).find('.subCategorySummary:first');
				if (fade.is(':animated')) {
					fade.stop().fadeTo(0, 0);
				} else {
					fade.fadeOut(0);
				}
			});
})
})(jQuery);