$(function() {

	
$('form#boots').append('<input type="image" src="https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif" name="submit" alt="PayPal — The safer, easier way to pay online." title="PayPal — The safer, easier way to pay online." />');

	$('a[href^="https://"], a[href^="http://"]').attr({target: "_blank"/*, title: "Opens in a new window"*/});

$('h1').wrapInner('<span />');

//$('.content').addClass('gallery');

$('.gallery a').lightBox(); // lightbox gallery

$(".content a[rel^='prettyPhoto']").prettyPhoto({theme: 'dark_rounded'});
		
$('#map a[rel^="prettyPhoto"]').prettyPhoto({theme: 'dark_rounded'});

$('#suits a[rel^="prettyPhoto"]').prettyPhoto({theme: 'dark_rounded'});
	
	// start of read more dropdown on product-details page
	var solos = $('ul.solos');
	solos.hide();
	
	$('a.seeMore').click(function(evt) {
		evt.preventDefault();
			$(this).next('ul.solo').slideToggle('slow');
			
			var $link = $(this);
			if ($link.text() == "Read More"){
				$link.text('Read Less');
			} else {
				$link.text('Read More');
			}
	});
	// end of read more dropdown on product-details page

}); // end ready

                           


