$(document).ready(function(){

	$('#nav ul li').hover(
		function () {
			//show submenus
			$('ul', this).slideDown(200);
 
		}, 
		function () {
			//hide submenus
			$('ul', this).slideUp(200);			
		}
	);

$("a[rel='colorbox-1']").colorbox({maxWidth:"85%", maxHeight:"85%"});
$("a[rel='colorbox-2']").colorbox({maxWidth:"85%", maxHeight:"85%"});
$("a[rel='colorbox-81']").colorbox({maxWidth:"85%", maxHeight:"85%"});
$("a.colorbox").colorbox({maxWidth:"85%", maxHeight:"85%"});

$('a.email_replace_low').nospam({
  replaceText: true,
  filterLevel:'low'
});

});
