$(document).ready(function(){ 
	// top and bottom images for .sponsored
	$(".sponsored").prepend("<div class=\"sponsoredTop\"></div>");
	$(".sponsored").append("<div class=\"sponsoredBottom\"></div>");
	
	// top and bottom images for .entry
	$(".entry").prepend("<div class=\"entryTop\"></div>");
	$(".entry").append("<div class=\"entryBottom\"></div>");
	
	// the 3rd li in the #categories
	$("#categories li:nth-child(3n)").addClass("alt");
	
	// first element #breadcrumbs 
	$("#breadcrumbs a:first").addClass("home");
	
	$('.tab > ul').tabs();
    
    $("#goTop").click(function() {
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
});