$(document).ready(function(){	
	if(BrowserDetect.browser == "Explorer"){
		$('.gray').children('img').fadeTo(200, 0.2);
		$('.select').mouseenter(function(e) {
			$(this).children('a').children('img').fadeTo(200, 0.4).end().children('span').fadeIn(200);
		}).mouseleave(function(e) {
			$(this).children('a').children('img').fadeTo(300, 1).end().children('span').fadeOut(300);
		});
		
		
		$('.remove').children('a').children('img').fadeTo(200, 0.4);
		$('.remove').mouseenter(function(e) {
			$(this).children('a').children('img').fadeTo(200, 1);
		}).mouseleave(function(e) {
			$(this).children('a').children('img').fadeTo(300, 0.4);
		});
	}
	
	else {
		$('.big').mouseenter(function(e) {
			$(this).children('a').children('img').animate({ height: '174', left: '0', top: '0', width: '246'}, 100).end().children('span').fadeIn(200);
		}).mouseleave(function(e) {
			$(this).children('a').children('img').animate({ height: '267', left: '-66', top: '-47', width: '378'}, 100).end().children('span').fadeOut(300);
		});
		
		$('.small').mouseenter(function(e) {
			$(this).children('a').children('img').animate({ height: '133', left: '0', top: '0', width: '182'}, 100).end().children('span').fadeIn(200);
		}).mouseleave(function(e) {
			$(this).children('a').children('img').animate({ height: '204', left: '-50', top: '-36', width: '288'}, 100).end().children('span').fadeOut(300);
		});
		
		$('.remove').mouseenter(function(e) {
			$(this).children('a').children('img').animate({ height: '133', left: '0', top: '0', width: '182'}, 100).end().children('span').fadeOut(200);
		}).mouseleave(function(e) {
			$(this).children('a').children('img').animate({ height: '204', left: '-50', top: '-36', width: '288'}, 100).end().children('span').fadeIn(300);
		});
	}
	
	$('.note').click(function () { 
		$(this).parent().next().fadeIn(200); 
	});
	
	$('.close').click(function () { 
		$(this).parent().fadeOut(300); 
	});
});
