$().ready(function(){
	$("input.label").focus(function(){
		if ($(this).attr('rel') == $(this).val()) {
			$(this).val('');
		}
	});
	$("input.label").blur(function(){
		if ($(this).val() == '') {
			$(this).val($(this).attr('rel'));
		}
	});
	$('.confirm').click(function(){return confirm($(this).attr('rel'))})
	$('.focusnow').focus();
	$("#search-form select#id_search_city").selectBox();
	$('a[rel*=target-blank]').click(function(){
		window.open(this.href);
		return false;
	});
	$('.fancybox').fancybox();

	$(".checkbox input").change(function(){
		if($(this).is(":checked")) {
			$(this).prev("label").addClass("selected");
		} else {
			$(this).prev("label").removeClass("selected");
		}
	});
	$(".checkbox input").each(function(i,e){
		if($(e).is(":checked")) {
			$(e).prev("label").addClass("selected");
		} else {
			$(e).prev("label").removeClass("selected");
		}
	});
})
