$(document).ready(function(){
	
	//--Handle background image scaling ------------------------------------------------------------------------------------------ //
	//$('img.backgroundImg').maxImage({
	//	isBackground: true,
	//	verticalAlign: 'top'
	//});
	//--End ---------------------------------------------------------------------------------------------------------------------- //

});

function switchTab(tabID, tabID2) {

	jQuery("#"+tabID).parent().children('li').css({'border-bottom' : '0px solid #000000', 'color' : '#b7b7b7'});  
	jQuery("#"+tabID).css({'border-bottom' : '1px solid #f6f6f6', 'color' : '#686868'});
		
	if(tabID == 'tab_twitter') {
		jQuery("#content_blog").hide();
		jQuery("#content_facebook").hide();
		jQuery("#content_twitter").show(); }
		
	if(tabID == 'tab_facebook') {
		jQuery("#content_blog").hide();
		jQuery("#content_twitter").hide();
		jQuery("#content_facebook").show(); }
		
	if(tabID == 'tab_blog') {
		jQuery("#content_twitter").hide();
		jQuery("#content_facebook").hide();
		jQuery("#content_blog").show(); }
}
