$(document).ready(function(){ 
	superfish_dropdown();
	
	$(".activefocus").focus(function () {
			if ($(this).attr("value") == $(this).attr("defaultValue")) {
					$(this).attr("value", '');
			}

	});

	$(".activefocus").blur(function () {
			if ($(this).attr("value") == '') {
					$(this).attr("value", $(this).attr("defaultValue"));
			}

	});
	
});

function superfish_dropdown(){
	$("ul.main_menu").superfish();
}

function menu_background_effect(){
	 $('.main_menu li a').append('<div class="hover"></div>');  
	 $('.main_menu li a').hover(  
		 function() {
			$('ul li:last', this).css('background','none');
			$(this).children('div').fadeIn('500');   
		},function() {  
			$(this).children('div').fadeOut('500');      
		});
}

//function AlertMessage(){
//    Shadowbox.open({
//        player:     'iframe',
//        content:    '/breast-augmentation-offer/',
 //       height:     500,
 //       width:      500
 //   });
// }
// Shadowbox.init({
//    language:   "en",
//    players:    ["flv", "html", "iframe", "img", "qt", "swf", "wmp"]
// });