﻿// JavaScript Document
$(function() {
	// Use this example, or...
	$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
	
		jQuery(".boxSubscribe").hide();
		jQuery(".hide").click(function(){
		jQuery(this).next(".advertiseInfo").slideToggle(600);
		jQuery(this).next(".boxSubscribe").slideToggle(600);
	});

	jQuery(".contactForm").hide();
	//toggle the componenet with class msg_body
	jQuery(".collapse").click(function(){
		jQuery(this).next(".contactForm").slideToggle(600);
	});
	
	jQuery(".contact-address").hide();
	//toggle the componenet with class msg_body
	jQuery(".contact-name").click(function(){
		jQuery(this).next(".contact-address").slideToggle(600);
	});
});
