$(function(){
	
	$('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });



	swapValues = [];
	$("#search,#sidebar1_keywords,#sidebar1_Text1").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.group").fancybox({
		'hideOnContentClick': false,
		'frameWidth': 362,
		'frameHeight': 352
	});
	
});
