$(document).ready(function() {
	$(".imgBtn").hover(
		function () {
			$(this).addClass("bOrange");
		},
  		function () {
    		$(this).removeClass("bOrange");
  		}
	);
	$(".rightbox:last").css("border-bottom","none");
	
	if ($('.myIframe').length ) {
		$(".myIframe").colorbox({opacity: 0.5, innerWidth:980, innerHeight:550, iframe:true});
	}
	
	if ($('#mini-gallery').length ) {
		$('#mini-gallery').innerfade({ speed: 'slow', timeout: 4000, type: 'sequence', containerheight: '139px' });
	}
});
