/* Custom tabbed content for proDVGFX by Matt/Vaft
	Known bugs:
	>Flashing
	>Slow effects in some browsers
	>Doesn't work in most versions of IE (not fixing)
	
	If you are knowledgeable in jQuery and have some fixes or tell me about them.
	Since I'm not.
*/

$(document).ready(function(){
	var tabContainers = $('div.tabs > div');
	tabContainers.hide().filter(':first').show();

	$('div.tabs ul.tabNav a').click(function () {
		// Change beginning effect
		tabContainers.slideUp(450);
		// Change ending effect
		tabContainers.filter(this.hash).slideDown(550);
		$('div.tabs ul.tabNav a').removeClass('selected');
		$(this).addClass('selected');
		return false;
	}).filter(':first').click();

});