$(function(){
/////////////////////////////////////////////////////////////////////////////////////////////
		   
		   
// Swap Image
$('img.hov').each(function(i){
	var before = $(this).attr('src');
	var after = (before.indexOf('gif') != -1) ? before.replace('.gif', '_hov.gif') : before.replace('.jpg', '_hov.jpg');
	
	var preload = new Image();
	preload.src = after;
	
	$(this).hover(function(){
		$(this).attr('src', after);
	},function(){
		$(this).attr('src', before);
	});
});		   


// Swap Image in the list of CATEGORY INDEX
if($('#categoryIndex').length > 0){
	$('#categoryIndex li').each(function(i){
		var target = $(this).find('dt img:not(.new)');
		var url = $(this).find('dd.more a').attr('href');
		
		var before = target.attr('src');
		var after = (before.indexOf('gif') != -1) ? before.replace('.gif', '_hov.gif') : before.replace('.jpg', '_hov.jpg');
		
		var preload = new Image();
		preload.src = after;
		
		$(this).hover(function(){
			target.attr('src', after);
		},function(){
			target.attr('src', before);
		});
		
		$(this).click(function(){
			location.href = url;
			return false;
		});
	});	
}


// Auto Scroll
$('.btn-pagetop a').click(function(){   
	$.scrollTo($('body'),500);
	return false;
});

	
/////////////////////////////////////////////////////////////////////////////////////////////	   
});