// WTN*jQuery sample:: Image change02 script.(use jQuery1.2.6)
// Copyright (c) 2008 Tenderfeel. http://tenderfeel.xsrv.jp
// MIT & GPL (GPL-LICENSE.txt) licenses.

$(document).ready(function (){

	$('ul#thumbs > li').hover(function(){ 
		$(this).fadeTo(60,0.7);
		$(this).css('height','60px');
	},function() {
		$(this).fadeTo(120,1);
	});
	
	$('ul#thumbs > li > a').click(function(){
		var src = $(this).attr("href"); 
		var title = $(this).attr("title");
		$("#view").fadeOut("fast",function() {
			$(this).find("p").find("img").attr("src",src);
			$(this).find("dl").addClass('dl'+title);
			switch(title){
				case '01':
					$(this).find('dt').find('img').attr('src','../wp-content/themes/feelflip/images/discography/title'+title+'.gif');
					$(this).find('dd').html('2010/01/20 release<br/>500YEN(tax in)<br/>TOWER RECORDS限定販売<br/><br/>1.JACKPOT<br/>2.Rain<br/>3.But I Dislike You<br/>4.Foxtail');
					break;
				case '02':
					$(this).find('dt').find('img').attr('src','../wp-content/themes/feelflip/images/discography/title'+title+'.gif');
					$(this).find('dd').html('2009/08/05 release<br/>2100YEN(tax in)');
					break;
				case '03':
					$(this).find('dt').find('img').attr('src','../wp-content/themes/feelflip/images/discography/title'+title+'.gif');
					$(this).find('dd').html('2009/06/03 release<br/>840YEN(tax in)<br/><br/>1.No Bumps Ahead<br/>2.Don\'t Wanna Be A Loser<br/>3.Learn Your Stance<br/>4.Lost Everything');
					break;
				case '04':
					$(this).find('dt').find('img').attr('src','../wp-content/themes/feelflip/images/discography/title'+title+'.gif');
					$(this).find('dd').html('1400YEN(tax in)');
					break;
				case '05':
					$(this).find('dt').find('img').attr('src','../wp-content/themes/feelflip/images/discography/title'+title+'.gif');
					$(this).find('dd').html('2007/07/25 release<br/>1500YEN(tax in)<br/><br/>1.NxDxSxP<br/>2.RESPECT TO 90\'S<br/>3.Know the meaning that looks up<br/>4.Different road<br/>5.Nonsmoking objection<br/>6.BIG MY WALL<br/>7.LIFE NOT REGRETTED');
					break;
				case '07':
					$(this).find('dt').find('img').attr('src','../wp-content/themes/feelflip/images/discography/title'+title+'.gif');
					$(this).find('dd').html('2011/04/06 release<br/>2000YEN(tax in)');
					break;
			}
			$(this).fadeIn('fast');
		});
		return false;
						   
	});
	
});
