/*
	Champix
	========================================
	Version:	0.1
	Date:		12/05/11
	Website:	http://
	Author:		Matt Ravenhall
*/


$(window).ready(function() {
	$("div.expand").css({'display' : 'none'});
});

$('a#title').click(function() {
  $(this).toggleClass("selected");
  $('.expand').slideToggle('slow');
  return false;
});
