$(document).ready(function() {

	// Projects Fader
	$('.proj-container').cycle({ 
	    fx:      'fade', 
	    speed:    500, 
	    timeout:  5000,
		pager: 	  '#nav'
	});


	// Binetix panel show/hide
	$(".bxslide-button").click(function(){
		// this --> parent --> #bxslide-panel: toggle visibility with slide								
		$(this).parent().find("#bxslide-panel").slideToggle("slow");

		// toggle our active status - we'll store it as a CSS class
	  	$(this).toggleClass("active");

		// update HTML
		$(this).html( ($(this).hasClass("active")) ? "Close" : "Read More");

		// return false so any link destination is not followed
		return false;
	});

	// Force title width after images load
	$('.proj-title').width(592);

});



