var $j = jQuery.noConflict();

$j(function(){
    $j("#input_2_1 label").click(function(){
		var this_id = $j(this).attr("for");
    	var checked = $j("#"+this_id).is(':checked'); 
		if(checked == false){
			$j(this).css('background-position', '-159px 0');
		} else {
			$j(this).css('background-position', '0 0');
		}
    });
	
	
	$j.fn.cleardefault = function() {
		return this.focus(function() {
			$j(this).parent('.ginput_container').siblings('.gfield_label').css('display','block');
		}).blur(function() {
			$j(this).parent('.ginput_container').siblings('.gfield_label').css('display','none');
		});
	};
	$j(".contact_form input, .contact_form textarea").cleardefault();
});

