$(function() {
	// Hide elements
	$('.box-content-drop, .tab').hide();

	// Tabs
	var tabsA = $('.tabs a');
	tabsA.bind('click', function() {
		var i = tabsA.index(this);
		$('.tab').hide().eq(i).show();
		ResizeFrame();
		return false;
	});

	// Drop downs setup
	var box = $('.box');
	var animate = false;

	// Open
	box.delegate('.open', 'click', function() {
		if(!animate) {
			animate = true;
			$(this).removeClass('open').addClass('close').parent().next().slideDown(function() {
				ResizeFrame();
				animate = false;
			});
		}
		return false;
	});
	
	// Close
	box.delegate('.close', 'click', function() {
		if(!animate) {
			animate = true;
			$(this).removeClass('close').addClass('open').parent().next().slideUp(function() {
				ResizeFrame();
				animate = false;
			});
		}
		return false;
	});


});

 
