$(document).ready(function() {
	$('.quick-login input').blur(function() {
		this.style.backgroundColor='#EAF4FF'; this.style.filter='alpha(opacity=75)';
	});
	$('.quick-login input').focus(function() {
		this.style.backgroundColor='#FFFFFF'; this.style.filter='alpha(opacity=100)';
	});
	
	$(".close").click(
			function () {
				$(this).parent().fadeTo(400, 0, function () { // Links with the class "close" will close parent
					$(this).slideUp(400);
				});
				return false;
			}
		);
	
	$('a[rel*=facebox]').facebox();
	$(".wysiwyg").wysiwyg(); // Applies WYSIWYG editor to any textarea with the class "wysiwyg"
	$('.check-all').click(
			function(){
				$(this).parent().parent().parent().parent().find("input[type='checkbox']").attr('checked', $(this).is(':checked'));   
			}
		);
});

function redirect(link){
	window.location.replace(link);
}
