$(function() {

	$('#date').datepicker({dateFormat : 'yy/mm/dd'});
		
	$('html').keydown(function(e) {
		if (e.ctrlKey) {
			$('html').keydown(function(ee) {
				if (ee.altKey) {
					$('html').keydown(function(eee) {
						if (eee.keyCode == 76) {
							window.location = 'http://www.rawmedia.co.za/auth/index';
						}
					});
				}
			});
		}
	});

    // initialize scrollable  
    $("div.scrollable").scrollable({
        size: 3, 
        items: '#thumbs',   
        hoverClass: 'hover'
        }
	);     

	// blog bar's height
	var $wrapperHeight = $('#wrapper').height();
	$('#blogBar').height($wrapperHeight);

	// move blog bar tab
	$('#tabRight').click(function()
	{
		$('#blogBar #tabRight').fadeOut(200, function()
		{
			$('#blogBar #tabLeft').fadeIn(600);
		});
		$('#barSubscribe').hide(400);
		$('#barArchive').fadeOut(400);
		$('#blogBar').animate({width : '30px'}, 600, 'easeInBack');
	});

	$('#tabLeft').click(function()
	{
		$('#blogBar #tabLeft').fadeOut(200, function()
		{
			$('#blogBar #tabRight').fadeIn(600);
		});
		$('#blogBar').animate({width : '180px'}, 400, 'easeOutBack');
		$('#barSubscribe').show(600);
		$('#barArchive').fadeIn(600);
	});

});
