$(function() {
	
	$('.png_fix').pngFix();
	
	$(".empty_on_focus_once").focus(function() {
		if($(this).hasClass("empty_on_focus_once")) {
			$(this).attr("value", "");
			$(this).removeClass("gray");
		}
		$(this).removeClass("empty_on_focus_once");
	});
	
	$(".change_to_password_on_focus").focus(function() {
		$(this).addClass("hidden");
		$(this).siblings("[type=\"password\"]").removeClass("hidden").focus();
	});

	$(".rounded_corners10").corners('10px');
	
	$(".rounded_corners15").corners('15px');
	
	$(".hoverable_dark_red").hover(function() {
		$(this).addClass('bg_dark_red');
		$(this).addClass('white');
	}, function() {
		$(this).removeClass('bg_dark_red');
		$(this).removeClass('white');
	}
	);
	
	$('.bookmark').click( function() {
	
		if(document.all)
		{
			window.external.AddFavorite(location.href,document.title);			
		}
		else
		{
			if(window.sidebar)
			{
			window.sidebar.addPanel(document.title,location.href,'');
			}
		}
	});
   
   $('.dark_red_box').corners('10px');
	
});
		
