$(document).ready(function(){

$("span#bookmark-tile").css({height: "110px"});
$("span#bookmark-tile img").css({opacity: 1.0});

$("a.testimonial").click(
	function(){
		$("div.default-information").fadeOut();
		$("div.testimonial-tile").pause(700).fadeIn();
		$(this).fadeOut();
		$("a.maininfo").pause(700).fadeIn();
	}
);
$("a.maininfo").click(
	function(){
		$("div.testimonial-tile").fadeOut();
		$("div.default-information").pause(700).fadeIn();
		$(this).fadeOut();
		$("a.testimonial").pause(700).fadeIn();
	}
);

$("a.showdetails").click(
	function(){
		$("div#optionalquote").toggle('fade');
	}
);

$("a.readmore").click(function(){
	$("div#more-about-website-uk").show('fade');return false;
});

$("a.make-appear").click(function(){$("#main-box-content").toggle('fade');$("#even-more").toggle('fade');return false;});

/*
$("a.more-colorbox").click(
	function(){
			var href = "";
			href = $(this).attr("href");
			$(".more-colorbox").colorbox({width:"1000px", inline:true, href:href});
			}
);

$("a.more-colorbox-small").click(
	function(){
			var href = "";
			href = $(this).attr("href");
			$(".more-colorbox-small").colorbox({width:"380px", inline:true, href:href});
			}
);
*/
});


// bookmark sites link for IE, plus messages in firefox and opera
// href="javascript:bookmarksite('company','http://www.domain.co.uk')"

function bookmarksite(title,url){
	if (document.all)
	window.external.AddFavorite(url,title);
	else if (window.sidebar)
		  alert('This feature only works for Internet Explorer, use Control+D to bookmark This website');
	else if( window.opera && window.print )
		alert('This feature only works for Internet Explorer, use Control+T to bookmark This website');
}