$(document).ready(function(){
	$('#cssdropdown li.headlink').hover(
		function() { $('ul', this).css('display', 'block'); },
		function() { $('ul', this).css('display', 'none'); });
		
});


var openMyModal = function(source){
	modalWindow.windowId = "myModal";
	modalWindow.width = 400;
	modalWindow.height = 242;
	modalWindow.content = "<div style='margin-top: 40px; margin-left:20px;'><iframe width='370' height='200' frameborder='0' scrolling='auto' allowtransparency='true' src='" + source + "'>&lt/iframe></div>";
	modalWindow.open();
};

