/* Author: Langoor

*/

$(document).ready(function(){

	if($("#main").height() < $("#sidebar-right").height()){
		$("#main").height($("#sidebar-right").height());
	}

	if(!Modernizr.input.placeholder){

		$('[placeholder]').focus(function() {
		  var input = $(this);
		  if (input.val() == input.attr('placeholder')) {
			input.val('');
			input.removeClass('placeholder');
		  }
		}).blur(function() {
		  var input = $(this);
		  if (input.val() == '' || input.val() == input.attr('placeholder')) {
			input.addClass('placeholder');
			input.val(input.attr('placeholder'));
		  }
		}).blur();
		$('[placeholder]').parents('form').submit(function() {
		  $(this).find('[placeholder]').each(function() {
			var input = $(this);
			if (input.val() == input.attr('placeholder')) {
			  input.val('');
			}
		  })
		});

	}

	$('#button span').click(function(event){
		event.preventDefault();
		var integer = $(this).index() + 1;
		$('#myslide .cover').animate({left:-570*(parseInt(integer)-1)})  /*----- Width of div mystuff (here 160) ------ */
		$('#button span').removeClass('active');
		$(this).addClass('active');
	});

});























