<!--//---------------------------------+
//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use
// --------------------------------->
$(document).ready(function()
{
	$("h3.expand_link").toggle(function()
    {
		$(this).css({backgroundImage:"url(images/down.png)"}).next("div.expand").slideToggle(500).siblings.slideUp("slow");
		}, function()
		{
		$(this).css({backgroundImage:"url(images/left.png)"}).next("div.expand").slideToggle(500).siblings.slideUp("slow");
	
	});
	$("#oldfilm .expand_link").toggle(function()
    {
		$(this).next("div.expand").fadeIn(500).siblings.slideUp("slow");
		}, function()
		{
		$(this).next("div.expand").fadeOut(500).siblings.slideUp("slow");
	
	});
	$("#sepia .expand_link").toggle(function()
    {
		$(this).next("div.expand").fadeIn(500).siblings.slideUp("slow");
		}, function()
		{
		$(this).next("div.expand").fadeOut(500).siblings.slideUp("slow");
	
	});
	$("#letterbox .expand_link").toggle(function()
    {
		$(this).next("div.expand").fadeIn(500).siblings.slideUp("slow");
		}, function()
		{
		$(this).next("div.expand").fadeOut(500).siblings.slideUp("slow");
	
	});
	$("#vignette .expand_link").toggle(function()
    {
		$(this).next("div.expand").fadeIn(500).siblings.slideUp("slow");
		}, function()
		{
		$(this).next("div.expand").fadeOut(500).siblings.slideUp("slow");
	
	});
	$("#cooling .expand_link").toggle(function()
    {
		$(this).next("div.expand").fadeIn(500).siblings.slideUp("slow");
		}, function()
		{
		$(this).next("div.expand").fadeOut(500).siblings.slideUp("slow");
	
	});
	$(".expand_link").toggle(function()
    {
		$(this).next("div.expand").slideToggle(500).siblings.slideUp("slow");
		}, function()
		{
		$(this).next("div.expand").slideToggle(500).siblings.slideUp("slow");
	
	});
});



