$(function($){
	$("input:checkbox").each( function() {
		if(this.checked)
		{
			$("a#"+this.id).addClass('checked');
		} else {

		}
	});

	$("a.checkbox").click(function(){
		objID =$(this).attr('id');
		if($(this).hasClass('checked'))
		{
			 $(this).removeClass('checked');
			 $("input:checkbox#"+objID).attr('checked','');
		} else {
			 $(this).addClass('checked');
			 $("input:checkbox#"+objID).attr('checked','checked');
		}
	});


	$("div.btn1").hover(
			function(){
				$(this).css('backgroundPosition','0 -22px');
			},
			function(){
				$(this).css('backgroundPosition','0 0');
			});

});
