/*
*	edreamz 2006
* 	jjohnson
*/

/* NAVIGATION DROP DOWNS */

$(document).ready(function(){
$(this).find('ul.subMenu').hide();
$('#hpBG').css('margin-top','-35px');
		$('#mainNav > li').each(function(i){
			
			$(this).hover(function(){  
				$(this).find('ul.subMenu').show();
			},function(){
				$(this).find('ul.subMenu').hide();
			});
			
		});
		

	});

	
//Fix for IE6 CSS Flicker Bug
try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}

function RUSure(href,object_name,object_type){
		var message = "Are you sure you want to Delete " + object_name + " from " + object_type + "?";
		var yon = window.confirm(message);
		if (yon == 1){
			window.location.href = href;
		}
	}
