$(document).ready(function(){
	
	tmpl = $('.tmpl').html();
	
	
	$('#sidebar01 h2:first').addClass('first');
	
	if($('#midle .post-single').length > 0){
		
		$('#midle .posttop-single:first').addClass('postfirst-single');		
	}
	else {
		$('#midle .posttop:first').addClass('postfirst');
	}
		
	$('#midle .buy img').hover(function(){				
		
		if($('#midle .post-single').length > 0){
			$(this).attr('src', tmpl + '/img/buy-white-hover.gif');						
		} else {		
		$(this).attr('src', tmpl + '/img/buy-hover.gif');		
		}
		
	}, function(){
		
		if($('#midle .post-single').length > 0){
			$(this).attr('src', tmpl + '/img/buy-white.gif');			
		} else {
		$(this).attr('src', tmpl + '/img/buy.gif');
		}
		
	});
	
	$('#featured img.fbuy').hover(function(){	
		$(this).attr('src', tmpl + '/img/featured-buy-hover.gif');
	}, function(){
		$(this).attr('src', tmpl + '/img/featured-buy.gif');
	});
	
	
	
});
