$(document).ready(function(){
		// default options
		$('ul.nav li.l6 > a').click(function(){return false;});
		$('ul.nav li.l6').hover(function(){
			$(this).children('a').addClass("current");
			$(this).children("div").fadeIn('fast');
		},function(){
			$(this).children('a').removeClass("current");
			$(this).children("div").fadeOut('fast');
		});
		
		swapValues = [];
		$("input.swap").each(function(i){
			swapValues[i] = $(this).val();
			$(this).focus(function(){
				if ($(this).val() == swapValues[i]) {
					$(this).val("");
				}
			}).blur(function(){
				if ($.trim($(this).val()) == "") {
					$(this).val(swapValues[i]);
				}
			});
		});
		
		$("a[rel^='pp']").prettyPhoto();
	});
