How to right click on a link and select an option using Selenium WebDriver

@Test
public void RightClick() throws Exception

{
driver.get("
http://seleniumsubbu.blogspot.in/");

Thread.sleep(3000);
Actions act=new Actions(driver);
act.contextClick(driver.findElement(By.linkText("Quiz"))).perform();

}