/*
Custom scripts for the Flexion web site (www.flexiontherapeutics.com) based on the jQuery library (www.jquery.com)
Author: Maggie Costello Wachs, Filament Group (www.filamentgroup.com)
Date: January 2008
*/

// assign events on DOM ready
$(function(){
	
	// open link in a new window
	$('.openNewWindow').each(function(){
		$(this).removeClass('openNewWindow').addClass('newWindow');
		
		var thisHref = $(this).attr('href');
		$(this).attr('title', 'Open '+thisHref+' in a new window');
		
		$(this).click(function(){
			var pop = window.open(thisHref, 'newFlexionWindow', 'toolbar=1, location=1, scrollbars=1, resizable=1, width=800, height=550');
			pop.focus();
			return false;			
		});
	});
	
	// show email signup form
	$('#showEmailSignup').click(function(){
		$('#emailSignupForm').show(400);
		$(this).after($(this).html()).remove();
		return false;
	});
	
	//homepage flash embed
	if ($('#homePageFeature').size() > 0) {
		var so = new SWFObject("images/flexionHome.swf", "mymovie", "325", "265", "8", "#fff");
		so.write("homePageFeature");
	}
	
})