$(document).ready(function () {	
	$("#albumInfoToggle").click( function() {
        $("#albumInfo").slideToggle(400);
    }).toggle(
		function(){
			$(this).attr('title','click to collapse').toggleClass("expand");
		},
		function(){
			$(this).attr('title','click to expand').toggleClass("expand");
		}
	);
	
	$("#albumInfo ul li.clearfix").hover(
		function() {
			$(this).css("background-color", "#e6de82");
		},
		function() {
			$(this).css("background-color", "transparent");	
		}
	);
	$("#albumInfo ul li input.text").hover(
		function() {
			$(this).css("color", "#000000");
		},
		function() {
			$(this).css("color", "#ffffff");	
		}
	);
});
