var root = 'http://www.viceland.com/liveunbuttoned/';

$(window).bind("load", function() { 
	$("div.svw").slideView() 
});

$(document).ready(function(){
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'140px'},{queue:false,duration:160});
	});

	var input_value = $(".focus_clear").val();

	$(".focus_clear").focus(function() {
		if ($(this).val() == input_value) {
			$(this).val('');
		}
	});

$(document).ready(function() {
	$('.lightbox').lightBox({
		imageLoading: root + 'images/lightbox/ajax-loader.gif',
		imageBtnClose: root + 'images/lightbox/lightbox-btn-close.gif',
		imageBtnPrev: root + 'images/lightbox/lightbox-btn-prev.gif',
		imageBtnNext: root + 'images/lightbox/lightbox-btn-next.gif'	
	});
});

});


