$(document).ready(function(){
//modal
	var openMyModal = function(source)
	{
		modalWindow.windowId = "myModal";
		modalWindow.width = 650;
		modalWindow.height = 420;
		modalWindow.content = "<iframe width='650' height='420' frameborder='0' scrolling='no' allowtransparency='true' src='" + source + "'>&lt/iframe>";
		modalWindow.open();
	};
//news scroller
	$("div.scrollable").scrollable({vertical:true, size: 1});
	
	$("div.scrollable_feat").scrollable();
//alternative table colors
$(".stripeMe tr:even").addClass("alt"); 
//JQuery UI tabs						   
	$("#tabs").tabs();

// Services Subscribe

	$(".accordion2 h3:first").addClass("active");
	$(".accordion2 div.subscribe:not(:first)").hide();

	$(".accordion2 h3").click(function(){

	  $(this).next("div.subscribe").slideToggle("fast")
	  .siblings("div.subscribe:visible").slideUp("fast");
	  $(this).toggleClass("active");
	  $(this).siblings("h3").removeClass("active");

	});

});
