/*
Bookmark Script
*/
function bookmarksite(bookmarktitle,bookmarkurl){
	if (document.all)
	window.external.AddFavorite(bookmarkurl,bookmarktitle);
	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');
}
/*
Colorbox CallThis is for all inline contentthe link needs to be done like this...

<a href="#blah" class="colorbox">blah</a>

and the hidden div like this...

<div class="details">
<div id="blah"></div>
</div>
*/

$("a.colorbox").click(	function(){
			var href = "";
			href = $(this).attr("href");
			$(".colorbox").colorbox({width:"600px", inline:true, href:href});
			}	);	
	
$("a.colorboxphoto").colorbox();

$("a.colorboxiframe").colorbox({width:"80%", height:"80%", iframe:true});

