$(document).ready(function(){

	$('body').addClass('hasJS');
	
	var content = $('#dropdown');

	$('#dropdown-tab a').click(function()
	{
			content.slideToggle('medium');
			$(this).toggleClass('open');
			return false;
	});
	
	$('.cancel').click(function()
	{
			content.slideToggle('medium');
			$(this).toggleClass('open');
			return false;
	});
	
	$("#slider").easySlider({
		auto: true,
		continuous: true,
		numeric: true
	});
	
	/* This is basic - uses default settings */
	
	$("a.grouped_elements").fancybox();
	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});

	/* Apply fancybox to multiple items */
	
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	
	$(".tweet").tweet({
        join_text: "auto",
        username: "ccd_design",
        avatar_size: 0,
        count: 1,
        auto_join_text_default: "we said,", 
        auto_join_text_ed: "we",
        auto_join_text_ing: "we were",
        auto_join_text_reply: "we replied",
        auto_join_text_url: "we were checking out",
        loading_text: "loading tweets..."
      });
	
});
