/****************************************************** 
	Title:    Campaign Trails
	Author:   Wizzard Bulgaria
******************************************************/

$(function() {
	
	$('#main.index a.img').each(function() {			
		$(this).fadeTo(0, 0.7);
	});
		
	$('#main.index a.img').hover(function() {
		$(this).addClass('active_temp').fadeTo(400, 1);
		
	}, function() {
		$(this).removeClass('active_temp').fadeTo(400, 0.7);
		
	});
	
	$('.add_basket_string > form > table tr > td').each(function() {
		var temp = $(this).html();		
		var temp2 = temp.replace('>Select', '><span style="margin-right:4px">Select media: </span>');
		if (temp2)
			$(this).empty().append(temp2);
	});
});

