// PNG fix for IE 6
$(document).ready(function(){ 
		
	$(document).pngFix(); 

});

// no dots around links
$(document).ready(function() {

	$('a, label').bind('focus',
        function() {
            if (this.blur) this.blur();
        }
    );

});

// preload images
jQuery.preloadImages = function()
{
	for(var i = 0; i<arguments.length; i++)
	{
		jQuery("<img>").attr("src", arguments[i]);
	}
}

// rollover images
$(document).ready(function(){
 
    $('.rollover').hover(function(){
        img = $(this);
        curImg = $(this).attr('src');
        rplImg = curImg.replace('-off','-on');
        $(this).attr('src',rplImg);
    },function(){
        $(img).attr('src',curImg);
    })
 
});



