// JavaScript Document

$(document).ready(function(){
						   
	$('img.hover').hide();

	$('.btn-hover').hover(function(){
		
		if($.browser.msie){0
			$(this).children('img.hover').stop(true, true).show();
			$(this).children('img.normal').stop(true, true).hide();
		}
		else{
			$(this).children('img.hover').stop(true, true).fadeIn();
			$(this).children('img.normal').stop(true, true).fadeOut();
		}
		
	}, function(){
		
		if($.browser.msie){
			$(this).children('img.hover').stop(true, true).hide();
			$(this).children('img.normal').stop(true, true).show();
		}
		else{
			$(this).children('img.hover').stop(true, true).fadeOut();
			$(this).children('img.normal').stop(true, true).fadeIn();
		}
		
	});
	
	$('#hide-text').click(function(){
		
		if($('#content').is(':visible')){
			$('#content').hide();
			$('#hide-text img').attr('src', 'images/show-text.png');
		}
		else {
			$('#content').show();
			$('#hide-text img').attr('src', 'images/hide-text.png');
		}
	
	});

});
