/*
* global functions for use throughout the VP site
* made by David Cooper from Just Develop It :)
*/


function vp_pagecolours(colour)
{
	/*
	* function for modifying non-css changable elements of pages throughout site
	*/
	
	$('#buybutton').attr('src' ,'/img/buttons/buy-now_' + colour + '.png'); // mainly used on product detail pages
	$('.buynowsm').attr('src' ,'/img/buttons/buy-now-sm_' + colour + '.png'); // mainly ussed on cat view pages
	//buy-now-sm_grey
	
	$('#buybutton_large').attr('src', '/img/buttons/buy-now_' + colour + '.png'); // product detail page
	
}