$(function(){
	// rollover
	$('.imgover').each(function(){
		this.osrc = $(this).attr('src');
		this.rollover = new Image();
		this.rollover.src = this.osrc.replace(/(\.gif|\.jpg|\.png)/, "_o$1");
	}).hover(function(){
		$(this).attr('src',this.rollover.src);
	},function(){
		$(this).attr('src',this.osrc);
	});
	
	// checkable image
    $('.imgcheck').each(function(){
        this.osrc = $(this).attr('src');
        this.rsrc = new Image();
        this.rsrc = this.osrc.replace(/(\.gif|\.jpg|\.png)/, "_o$1");
        if ($('#' + $(this).attr('id') + '_h').attr('value')) $(this).attr('src',this.rsrc);
    }).click(function(){
        var id = '';
        if ($(this).attr('src') == this.osrc) {
            $(this).attr('src',this.rsrc);
            id = $(this).attr('id').split('_')[1];
        } else {
            $(this).attr('src',this.osrc);
        }
        $('#' + $(this).attr('id') + '_h').attr('value', id);
    });
    
	
	$("ul.checkboxList li label").hover(
	  function () {
		$(this).css("text-decoration","none");
	  }, 
	  function () {
		$(this).css("text-decoration","underline");
	  }
	);

});


function swapPhoto(photoSrc) {
	document.images.mainPhoto.src = photoSrc;
}

