$(document).ready(function() {
	fixAdvancedSearch();
	featuredHeader();
	homeImage();
	moverssbox();
	rssheader();
	categorymove();
	productmove();

$('#secondary-links').prepend("<a class='addthis_button' href='http://www.addthis.com/bookmark.php?v=250&amp;username=xa-4c9cd34859f0d205'><img src='http://s7.addthis.com/static/btn/v2/lg-share-en.gif' width='125' height='16' alt='Bookmark and Share' style='border:0'/></a><script type='text/javascript' src='http://s7.addthis.com/js/250/addthis_widget.js#username=4c9cd34859f0d205'></script>");

});

//Featured Products header
function featuredHeader() {
	$('#featured').prepend('<div id="featuredheader"><a href="http://www.compugift.co.uk"><img src="/static/Image/featured.png" alt="Compugift Promotional Products" ></a></div>');
}

function categorymove() {
	$('body.category h2').prepend($('#sub-categories'));
}

function productmove() {
	$('body.category h2').prepend($('.product-list'));
}

//Featured Products Header
function homeImage() {
	$('#featuredheader').prepend('<div id="homeImage"><a href="http://www.compugift.co.uk/-/spectrum-plastic-ball-pens?size=&start=30"><img src="/static/Image/SPECTRUMLARGE.jpg" alt="Round Stress Balls" ></a></div>');
}

//RSS Feed on right hand side
function moverssbox() {
	$('#mini-enquiry-basket').append($('#rss .rss-box'));
}

function rssheader() {
	$('#mini-enquiry-basket .rss-box').prepend('<div id="rssh3"><h3>Promotional Gifts Blog</h3></div>');
}

// Remove search options from advanced
// search results page.
//--------------------------------------------------

function fixAdvancedSearch() {
	if($('#search-results').length) $('#search').hide();
	$('#search-results').prepend("<div>For further results, <a id='refineSearch' href='/search.html'>Refine Your Search</a></div>");

	$('#refineSearch').click(function(event) {
		event.preventDefault();
		$('#search').fadeIn();
		$(this).hide();

	});

}


