	$(document).ready(function() {
		$("body div#navigation ul li").mouseover(function() {
			$(this).children("ul").show();
		});
		$("body div#navigation ul li").mouseout(function() {
			$(this).children("ul").hide();
		});
	});
	function fixPNG(img) {
		if($.browser.msie) {
			if($.browser.version < 7) {
				img.get(0).style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + img.attr('src') + '\')';
				img.attr('src', '/images/spacer.gif');
			}
		}
	}
	function fixPNGs() {
		if($.browser.msie) {
			if($.browser.version < 7) {
				var pngs = $('img[@src$=.png]');
				for(var i = 0; i < pngs.length; i++) {
					fixPNG($(pngs[i]));
				}
			}
		}
	}
	function ShowImage(id) {
		window.open('styles/zoom/?guid=' + id, 'LargeImage','height=640,width=640' );
	}
	function ShowTermsAndConditions() {
		window.open('/termsandconditions/popup', '', 'height=400,location=0,scrollbars=1,status=1,width=320');
	}