$(document).ready(function() {
	
	/* Default pulldown menu functionality */
	$('ul#primary-nav > li').hover(function() {
		$(this).children('a:first-child').addClass('hover');
		$(this).children('.pulldown').addClass('hover');
		$(this).children('.pulldown2').addClass('hover');
	}, function() {
		$(this).children('a:first-child').removeClass('hover');
		$(this).children('.pulldown').removeClass('hover');
		$(this).children('.pulldown2').removeClass('hover');
	});
	
	/* IE6 iFrame fix for DIV overlays on SELECT boxes */
	if($.browser.msie && $.browser.version == '6.0') {
		$('ul#primary-nav > li').each(function() {
			$(this).children('div.pulldown').before('<iframe class="pulldown"></iframe>');
		});
		$('ul#primary-nav > li').hover(function() {
			var y = $(this).children('div.hover').height();
			var x = $(this).children('div.hover').width();
			$(this).children('iframe.hover').css('height',y).css('width',x);
		}, function() {
		
		});
	}
});

