/* default JS scipts */
$(document).ready(function(){
	$("a.colorbox").colorbox({
		speed:250
	});

	$("a.sendPageColorbox").colorbox({
		speed:250,
		inline:true,
		href:"#sendPage"
	})

	$('.HorizontalMenuSubmit a.menuHover').livequery(function(){
		$(this).parent().hover(
			function(){
				$(this).children('ul').slideDown(100);
			},
			function(){
				$(this).children('ul').slideUp(100);
			}
		);
	})
})
